home *** CD-ROM | disk | FTP | other *** search
- /* Auto Logon for Twister BBS (One of the X-Comm Support BBS */
-
- /* For information detailing this script please take a look at "Extro.rexx" */
-
- Address "X-Comm"
- options results
-
- LOOK1 = "name:"
- LOOK2 = "password:"
-
- XWaitString LOOK1 10
- If result == LOOK1 then do
- XString "Your name\n\r"
- XSerialPrint result
-
- XWaitString LOOK2 10
- If result == LOOK2 then do
- XString "Your password\n\r"
- XSerialPrint result
- end
- end
-
- exit
-